home *** CD-ROM | disk | FTP | other *** search
/ VRML 2.0 Sourcebook (2nd Edition) / VRML 2.0 Sourcebook CD [md5 fed90f4f9c39d5a60d477058775c7e21].iso / book / unix / ch02 / 02fig01.wrl < prev   
Text File  |  1996-09-22  |  534b  |  33 lines

  1. #VRML V2.0 utf8
  2. # The VRML 2.0 Sourcebook
  3. # Copyright 1997 By
  4. # Andrea L. Ames, David R. Nadeau, and John L. Moreland
  5. # A brown hut
  6. Group {
  7.     children [
  8.     # Draw the hut walls
  9.         Shape {
  10.             appearance DEF Brown Appearance {
  11.                 material Material {
  12.                     diffuseColor 0.6 0.4 0.0
  13.                 }
  14.             }
  15.             geometry Cylinder {
  16.                 height 2.0
  17.                 radius 2.0
  18.             }
  19.         },
  20.     # Draw the hut roof
  21.         Transform {
  22.             translation 0.0 2.0 0.0
  23.             children Shape {
  24.                 appearance USE Brown
  25.                 geometry Cone {
  26.                     height 2.0
  27.                     bottomRadius 2.5
  28.                 }
  29.             }
  30.         }
  31.     ]
  32. }
  33.